home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / internet-tools / connect-line / cl / devkit / c / examples / pmbs2cl / all.h next >
Encoding:
C/C++ Source or Header  |  1995-11-10  |  979 b   |  36 lines

  1. //
  2. // Prometheus <-> Connectline Konverter, all.h
  3. // 
  4. // Copyright 1995 by Mathias Mischler
  5. //
  6.  
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <ctype.h>
  11.  
  12. #include <proto/exec.h>
  13. #include <proto/dos.h>
  14.  
  15. #include <dos/dostags.h>
  16.  
  17. #include <cl/clutil.h>
  18. #include <cl/cl_user.h>
  19. #include <cl/cl_prefs.h>
  20. #include <cl/cl_misc.h>
  21. #include <cl/clb.h>
  22. #include <cl/cls.h>
  23.  
  24. // Prometheus Defines
  25.  
  26. #define PMBSPath "Prometheus:"                      // Prometheus:
  27. #define PMBSDataPath PMBSPath "daten/"                    // Prometheus:daten/
  28. #define PMBSUserPath PMBSPath "user/"                        // Prometheus:user/
  29. #define PMBSUserList PMBSDataPath "user.dat"        // Prometheus:daten/user.dat
  30. #define PMBSBoardList PMBSDataPath "brett.dat"    // Prometheus:daten/brett.dat
  31. #define PMBSSystemList PMBSDataPath "netz.dat"  // Prometheus:daten/netz.dat
  32.  
  33. void ConvertPMBSUser ( void );                                    // user.c
  34. void ConvertPMBSBoard ( void );                                    // board.c
  35. void ConvertPMBSSystem ( void );                                // system.c
  36.